home *** CD-ROM | disk | FTP | other *** search
/ io Programmo 60 / IOPROG_60.ISO / soft / c++ / gsl-1.1.1-setup.exe / {app} / src / interpolation / bsearch.c < prev    next >
Encoding:
C/C++ Source or Header  |  2001-11-01  |  1.3 KB  |  48 lines

  1. /* interpolation/bsearch.c
  2.  * 
  3.  * Copyright (C) 1996, 1997, 1998, 1999, 2000 Gerard Jungman
  4.  * 
  5.  * This program is free software; you can redistribute it and/or modify
  6.  * it under the terms of the GNU General Public License as published by
  7.  * the Free Software Foundation; either version 2 of the License, or (at
  8.  * your option) any later version.
  9.  * 
  10.  * This program is distributed in the hope that it will be useful, but
  11.  * WITHOUT ANY WARRANTY; without even the implied warranty of
  12.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  13.  * General Public License for more details.
  14.  * 
  15.  * You should have received a copy of the GNU General Public License
  16.  * along with this program; if not, write to the Free Software
  17.  * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  18.  */
  19.  
  20. /* Author:  G. Jungman
  21.  */
  22. #include <config.h>
  23. #include <stdlib.h>
  24. #include <gsl/gsl_interp.h>
  25.  
  26. #ifndef HIDE_INLINE_STATIC
  27. size_t
  28. gsl_interp_bsearch (
  29.   const double x_array[], double x,
  30.   size_t index_lo,
  31.   size_t index_hi
  32.   )
  33. {
  34.   size_t ilo = index_lo;
  35.   size_t ihi = index_hi;
  36.   while (ihi > ilo + 1)
  37.     {
  38.       size_t i = (ihi + ilo) / 2;
  39.       if (x_array[i] > x)
  40.         ihi = i;
  41.       else
  42.         ilo = i;
  43.     }
  44.  
  45.   return ilo;
  46. }
  47. #endif
  48.